home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / H001C.ZIP / DJGPP3.ZIP / DRIVERS / MAKE.BAT < prev    next >
DOS Batch File  |  1991-03-06  |  193b  |  9 lines

  1. @echo off
  2. masm %1;
  3. if not errorlevel 1 tlink %1;
  4. if not errorlevel 1 exe2bin %1.exe %1.grd
  5. if not errorlevel 1 del %1.exe
  6. if not errorlevel 1 del %1.obj
  7. if not errorlevel 1 del %1.map
  8.  
  9.